First commit

This commit is contained in:
Andros Fenollosa
2021-04-01 09:48:35 +02:00
commit 17e952bdbd
12 changed files with 438 additions and 0 deletions

View File

@ -0,0 +1,19 @@
FROM debian:unstable-slim
# set work directory
WORKDIR /usr/src/app
# install software
RUN apt update
RUN apt -y upgrade
# dependencies
RUN apt install -y build-essential nodejs npm
# gulp
RUN npm install -g gulp-cli
# Add package.json
COPY package.json package.json
# dependencies gulp
RUN npm i