1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

adding python to alpine docker

This commit is contained in:
Patrik J. Braun 2019-12-14 12:47:20 +01:00
parent ed221e967c
commit 27a88c98eb
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
FROM node:12-stretch AS builder
# LABEL maintainer="Patrik J. Braun"
# copying only package{-lock}.json to make node_modules cachable
COPY package*.json /build/
WORKDIR /build

View File

@ -5,7 +5,7 @@ RUN apk add --no-cache wget && \
FROM arm32v6/node:12-alpine AS builder
COPY --from=qemu-builder /qemu-arm-static /usr/bin
# LABEL maintainer="Patrik J. Braun"
RUN apk add python build-base
# copying only package{-lock}.json to make node_modules cachable
COPY package*.json /build/
WORKDIR /build