Change docker image using alpine version

Change docker image from node:12 to node:12-alpine
This commit is contained in:
Edwin Betancourt 2020-08-27 11:04:52 -04:00 committed by GitHub
parent a590227ff9
commit e7c2b6c453
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
FROM node:12
FROM node:12-alpine
# Create app directory
WORKDIR /usr/app