Create Dockerfile

This commit is contained in:
Namhyeon Go 2024-03-06 15:11:13 +09:00 committed by GitHub
parent 0b5d733dfb
commit 91e9730903
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:3.12
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install --upgrade pip
RUN pip3 install -r requirements.txt
COPY . /app
EXPOSE 5555