Loading Dockerfile +2 −2 Original line number Diff line number Diff line FROM python:3.10-slim RUN apt update && apt install git gcc -y FROM python:3.10 RUN apt update COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt RUN apt install fontconfig fonts-nanum -y Loading Loading
Dockerfile +2 −2 Original line number Diff line number Diff line FROM python:3.10-slim RUN apt update && apt install git gcc -y FROM python:3.10 RUN apt update COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt RUN apt install fontconfig fonts-nanum -y Loading