Some checks failed
Build Formula10 Docker Image / build-docker (push) Failing after 8s
11 lines
233 B
Docker
11 lines
233 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.11.8-slim-bookworm
|
|
RUN apt-get update -y
|
|
WORKDIR /app
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
COPY . .
|
|
EXPOSE 5000
|
|
CMD ["python3", "-u", "formula10.py"]
|