Skip to content

Instantly share code, notes, and snippets.

@ryanKinoti
Created April 27, 2024 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanKinoti/76259a8b6fea9c5f8216f33fd142b812 to your computer and use it in GitHub Desktop.
Save ryanKinoti/76259a8b6fea9c5f8216f33fd142b812 to your computer and use it in GitHub Desktop.
edits-1. open the dockerfile inside the app folder and copy paste
FROM python:3.8-slim
WORKDIR /server
COPY . /server
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
ENV SERVER_ID=DefaultServer
CMD ["python", "app.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment