|
FROM python:3.12
|
|
|
|
RUN apt-get update && apt-get install -y locales
|
|
RUN locale-gen ko_KR.UTF-8
|
|
RUN apt-get update && apt-get install git -y
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt /requirements.txt
|
|
RUN pip install --no-cache-dir --upgrade -r /requirements.txt |