16 lines
283 B
Text
16 lines
283 B
Text
|
FROM python:3.12.4-alpine
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY src src
|
||
|
COPY README.md README.md
|
||
|
COPY requirements.txt requirements.txt
|
||
|
COPY LICENSE LICENSE
|
||
|
|
||
|
RUN python -m pip install --upgrade pip
|
||
|
RUN python -m pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
CMD ["python", "src/main.py"]
|
||
|
|
||
|
EXPOSE 80
|