Skip to content

Commit ea0181d

Browse files
committed
dockerfile
1 parent c531f2a commit ea0181d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)