15 lines
283 B
Docker
15 lines
283 B
Docker
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
|