15 lines
190 B
Docker
15 lines
190 B
Docker
FROM fascinated/docker-images:node-latest
|
|
|
|
EXPOSE 80
|
|
ENV HOST=0.0.0.0
|
|
|
|
COPY .git /home/container/.git
|
|
COPY . /home/container
|
|
|
|
RUN ls -a
|
|
|
|
RUN npm install
|
|
|
|
RUN npm run build
|
|
|
|
CMD npm run start |