aio2o-fastapi-sample/api-server/Dockerfile

10 lines
260 B
Docker

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