This commit is contained in:
2021-03-18 23:25:35 -03:00
parent 4611e901fc
commit 4ed9c834eb
55 changed files with 63543 additions and 0 deletions

View File

@ -0,0 +1,8 @@
FROM node:latest
COPY . /app
WORKDIR /app
ENV GULP_PLUGINS 'gulp-babel @babel/core @babel/preset-env gulp-dart-sass gulp-bro gulp-concat gulp-rename gulp-image gulp-uglify gulp-sourcemaps'
RUN npm install --global gulp-cli gulp && npm install --save-dev gulp
RUN npm install --save-dev ${GULP_PLUGINS}
ENTRYPOINT ["gulp"]