Skip to content
Permalink
test
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Basic version of flask app. Will ned to improve upon
1 contributor

Users who have contributed to this file

18 lines (13 sloc) 277 Bytes
# Base image
FROM python:3.11
# Set working directory
WORKDIR /app
# Copy requirements and install
COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy all files
COPY . .
# Expose port for Flask
EXPOSE 5000
# Run Flask app
CMD ["python", "flask_app/app.py"]