Skip to content

Instantly share code, notes, and snippets.

@RajputVaibhav
Created September 26, 2021 09:32
Show Gist options
  • Save RajputVaibhav/70c702e0816dea80ab4b6a5e08e6b560 to your computer and use it in GitHub Desktop.
Save RajputVaibhav/70c702e0816dea80ab4b6a5e08e6b560 to your computer and use it in GitHub Desktop.
Used in medium blog on devspace
FROM python:3.9-alpine
RUN pip install Flask flask-cors
WORKDIR /app
COPY ./ /app
EXPOSE 5050
CMD ["python","main.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment