Renamed Flask folder

This commit is contained in:
dub-flow
2024-05-16 12:22:53 +02:00
parent 2f74d3fcb3
commit 67e4e6a761
6 changed files with 0 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM python:3.12-alpine
WORKDIR /app
COPY Pipfile Pipfile.lock /app/
RUN pip install pipenv
# Activate the virtual environment and install dependencies
RUN pipenv install --deploy --system
# Copy the rest of the application code to the working directory
COPY . /app/
EXPOSE 5000
CMD ["python", "app.py"]