Skip to content
Snippets Groups Projects
Commit b52cd388 authored by Simon Saur's avatar Simon Saur
Browse files

Update testapp/Dockerfile

parent 7cf67cd5
No related branches found
No related tags found
No related merge requests found
Pipeline #21779 failed
FROM python:3.10.4-alpine
RUN apk --update add bash nano
RUN python3 && py3-pip
RUN pip install flask
COPY main.py /testapp/
COPY requirements.txt /testapp/
RUN pip install -r /testapp/requirements.txt
CMD python3 testapp/main.py
EXPOSE 5000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment