Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#180 glibcのバージョン違いによりyafを実行できない問題を解消 #181

Merged
merged 1 commit into from
Mar 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions osect_sensor/Infrastructure/edge_cron/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 As build-env
FROM debian:bullseye-slim As build-env
ENV LANG C.UTF-8
ENV TZ Asia/Tokyo
ENV DEBIAN_FRONTEND noninteractive
Expand Down Expand Up @@ -56,9 +56,9 @@ RUN apt-get update \
# pip関係のインストール
WORKDIR /home/work
RUN apt-get purge -y python3-yaml \
&& python3.10 -m pip install --upgrade pip --no-cache-dir \
&& python3.10 -m pip install setuptools==59.8.0 --no-cache-dir \
&& python3.10 -m pip install -r requirements.txt --no-cache-dir
&& python3.9 -m pip install --upgrade pip --no-cache-dir \
&& python3.9 -m pip install setuptools==59.8.0 --no-cache-dir \
&& python3.9 -m pip install -r requirements.txt --no-cache-dir

WORKDIR /home/work
# Yafのインストール
Expand Down