Update Dockerfile

This commit is contained in:
Serhiy Mytrovtsiy 2019-08-27 13:33:55 +02:00 committed by GitHub
parent 009047cdf8
commit 4f07ee4d27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,4 @@
FROM node:8.16-alpine
ENV \
NODE_PATH=.:/usr/lib/node_modules:/node_modules \
TIME_ZONE=Etc/UTC
RUN apk add --no-cache --update git tzdata openssl curl ca-certificates && \
ln -snf /usr/share/zoneinfo/${TIME_ZONE} /etc/localtime && \
echo ${TIME_ZONE} > /etc/timezone && date && \
rm -rf /var/cache/apk/*
FROM exelban/baseimage:node-latest
LABEL name="stylelinter"
LABEL version="1.0.0"