caio.co/de/tablier


Get rid of this /app/ prefix in the repo by Caio 5 years ago (log)

Blob Dockerfile

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM node:latest as build

ENV DEBIAN_FRONTEND noninteractive
ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8

RUN apt-get update -qq && apt-get install -y build-essential
RUN npm install -g gulp

WORKDIR /
ADD package.json /

RUN npm install

WORKDIR /app

EXPOSE 1313
EXPOSE 3001

CMD ["bash"]