1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-12 17:26:15 +00:00

Use Alpine

Lighter images :)
This commit is contained in:
Angristan
2018-03-10 14:27:40 +01:00
committed by GitHub
parent 07eb2c06a1
commit 87e6eabf3e

View File

@@ -1,11 +1,9 @@
FROM node:6
FROM node:6-alpine
MAINTAINER Ric Lister, rlister@gmail.com
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update && \
apt-get install -yq \
git
RUN apk -U upgrade \
&& apk add git
RUN git clone https://github.com/seejohnrun/haste-server.git /app
WORKDIR /app