Repository begleitend zum Blockseminar
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- # Example of Dockerfile
-
- FROM python:3.8.5-alpine3.12
-
- WORKDIR /app
-
- EXPOSE 5000
- ENV FLASK_APP=app.py
-
- COPY . /app
- RUN pip install -r requirements.txt
-
- ENTRYPOINT [ "flask"]
- CMD [ "run", "--host=0.0.0.0" ]
|