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
commit 1d9778226c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 . .