Skip to content
Snippets Groups Projects
Commit 8efa4902 authored by Michael Jonasson's avatar Michael Jonasson
Browse files

changed to real dockerfile

parent 03394f77
No related branches found
No related tags found
No related merge requests found
Pipeline #17052 passed with warnings
FROM nginx:alpine
COPY index.html /usr/share/nginx/html
#FROM nginx:alpine
#COPY index.html /usr/share/nginx/html
#EXPOSE 80
FROM alpine:3.10
COPY . sapis
WORKDIR "/sapis/"
RUN apk --no-cache update && apk --no-cache add python3 cython3 py-numpy openjdk11 && pip3 install --no-cache-dir --disable-pip-version-check -r REQUIREMENTS.txt
EXPOSE 4567
CMD ["./start.sh"]
#FROM nginx:alpine
#COPY index.html /usr/share/nginx/html
#EXPOSE 80
FROM alpine:3.10
COPY . sapis
WORKDIR "/sapis/"
RUN apk --no-cache update && apk --no-cache add python3 cython3 py-numpy openjdk11 && pip3 install --no-cache-dir --disable-pip-version-check -r REQUIREMENTS.txt
EXPOSE 4567
CMD ["./start.sh"]
FROM nginx:alpine
COPY index.html /usr/share/nginx/html
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment