Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
FIxes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
qdm12 committed Nov 23, 2018
1 parent 159a123 commit 57f790b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ ARG ALPINE_VERSION=3.8

FROM alpine:${ALPINE_VERSION} as builder
ARG MEEMO_VERSION=v1.9.0
RUN apk add -q --progress --update npm git python2 python-dev build-base
RUN apk add -q --progress --update npm git python-dev build-base
RUN git clone --branch ${MEEMO_VERSION} --single-branch --depth 1 https://github.com/nebulade/meemo.git /temp &> /dev/null
RUN mkdir /meemo && \
cd /temp && \
mv src /meemo/src && \
mv frontend /meemo/frontend && \
mv gulpfile.js package.json app.js things.json logo.png /meemo/
mv admin gulpfile.js package.json app.js things.json logo.png /meemo/
WORKDIR /meemo
RUN npm --silent install
RUN npm --silent -g install gulp
Expand Down

0 comments on commit 57f790b

Please sign in to comment.