Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
shahebazkazi authored Mar 3, 2023
1 parent eee3ac5 commit 5737bb6
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,19 @@ to run my project python manange.py runserver

GYM_Project

adding one line of code to trigger jenkin as well
adding one line of code to trigger jenkin as well



FROM python:3.7-alpine
WORKDIR
Learn more about the "WORKDIR" Dockerfile command.
/code
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
RUN apk add --no-cache gcc musl-dev linux-headers
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
EXPOSE 5000
COPY . .
CMD ["flask", "run"]

0 comments on commit 5737bb6

Please sign in to comment.