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

Commit

Permalink
Fix dockerfile, pinning node version
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekuil committed Jul 22, 2021
1 parent 3b0638b commit 1ec6443
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:alpine AS builder
FROM node:15.0-alpine3.12 AS builder

WORKDIR /opt/mx-puppet-slack

RUN apk --no-cache add git python make g++ pkgconfig \
RUN apk --no-cache add git python2 make g++ pkgconfig \
build-base \
cairo-dev \
jpeg-dev \
Expand All @@ -27,7 +27,7 @@ COPY --chown=node:node src/ ./src/
RUN npm run build


FROM node:alpine
FROM node:15.0-alpine3.12

VOLUME /data

Expand Down

0 comments on commit 1ec6443

Please sign in to comment.