We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c531f2a commit ea0181dCopy full SHA for ea0181d
1 file changed
Dockerfile
@@ -0,0 +1,12 @@
1
+FROM node:18-alpine
2
+WORKDIR /app
3
+
4
+COPY ["package.json", "./"]
5
+COPY ["gulpfile.js", "./"]
6
+COPY ["app", "./app"]
7
8
+RUN npm install gulp -g
9
+RUN npm install
10
+RUN gulp build
11
12
+CMD ["gulp", "serve"]
0 commit comments