Commit 2a7ea520 authored by tsukumi's avatar tsukumi

Fix: use apt-get on Dockerfile

parent 666e68d2
...@@ -4,7 +4,7 @@ FROM python:3.9-slim-buster ...@@ -4,7 +4,7 @@ FROM python:3.9-slim-buster
# Package installation # Package installation
RUN apt-get update -y && apt-get upgrade -y RUN apt-get update -y && apt-get upgrade -y
RUN apt install gcc python3-dev -y RUN apt-get install gcc python3-dev -y
# Dependencies installation # Dependencies installation
COPY requirements.txt /tmp/ COPY requirements.txt /tmp/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment