Ver código fonte

three commit

gr701_smmse 2 anos atrás
pai
commit
f7981abd99
1 arquivos alterados com 11 adições e 0 exclusões
  1. 11 0
      DockerFile

+ 11 - 0
DockerFile

@@ -0,0 +1,11 @@
+FROM debian:stretch
+WORKDIR /Docker
+RUN apt-get update && \
+DEBIAN_FRONTEND=noninteractive apt-get -q -y upgrade >/dev/null && \
+DEBIAN_FRONTEND=noninteractive apt-get -q -y install >/dev/null \
+nginx \
+procps \
+iproute2
+COPY . .
+EXPOSE 8000
+CMD ["nginx", "-g", "daemon off;"]