Configured Docker evironment for frontend

This commit is contained in:
Marcin-Ramotowski
2025-04-17 22:10:21 +00:00
parent 0ec30b3ec0
commit 2d947cccc3
4 changed files with 54 additions and 2 deletions

6
api/api.dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3.11.7-alpine
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 80
CMD ["python3", "app.py"]