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.

Dockerfile 206B

1234567891011121314
  1. # Example of Dockerfile
  2. FROM python:3.8.5-alpine3.12
  3. WORKDIR /app
  4. EXPOSE 5000
  5. ENV FLASK_APP=app.py
  6. COPY . /app
  7. RUN pip install -r requirements.txt
  8. ENTRYPOINT [ "flask"]
  9. CMD [ "run", "--host=0.0.0.0" ]