Test_ZA / Dockerfile
Talha812's picture
Create Dockerfile
cafd3df verified
raw
history blame contribute delete
155 Bytes
FROM nginx:alpine
COPY web /usr/share/nginx/html
RUN sed -i 's/80/7860/g' /etc/nginx/conf.d/default.conf
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]