chore: implement Docker best practices, closes #1

This commit is contained in:
Tim Brust 2017-09-08 21:53:51 +02:00
parent 8bea9da139
commit ad3a95d539
No known key found for this signature in database
GPG Key ID: C171AF8F3B0A86B3
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
FROM node:6-alpine FROM node:6-alpine
LABEL maintainer "Tim Brust <tim.brust@sinnerschrader.com>" LABEL maintainer "Tim Brust <tim.brust@sinnerschrader.com>"
ENV REFRESHED_AT 2017-08-14 ENV REFRESHED_AT 2017-09-08
RUN apk update && apk upgrade
RUN apk add git RUN apk add --no-cache git

View File

@ -1,6 +1,6 @@
# Node.js with Git Dockerfile # Node.js with Git Dockerfile
A minimal Dockerfile based on Node.js 6 LTS (Boron) branch (alpine) with the Git installed. A minimal Dockerfile based on Node.js 6 LTS (Boron) branch (alpine) with Git installed.
## What's included ## What's included