feat: use alpine for Dockerfile (#316)

feat: use alpine for Dockerfile
This commit is contained in:
Liyas Thomas
2019-11-20 05:45:21 +05:30
committed by GitHub

View File

@@ -1,7 +1,11 @@
FROM node:12.10.0-buster
FROM node:12.10.0-alpine
LABEL maintainer="Liyas Thomas (liyascthomas@gmail.com)"
# Add git as the prebuild target requires it to parse version information
RUN apk add --update --no-cache \
git
WORKDIR /app
COPY . .