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

Merge pull request #12 from Angristan/patch-1

Use Alpine for Hastebin image
This commit is contained in:
Ric Lister
2018-03-10 13:15:08 -05:00
committed by GitHub

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