@@ -0,0 +1,4 @@
+FROM alpine:latest
+RUN apk add --no-cache nginx && mkdir -p /run/nginx
+EXPOSE 80 443
+CMD ["nginx", "-g", "daemon off;"]