fix: add the missing make dependency

This commit is contained in:
Oliver Davies 2021-11-11 08:09:51 +00:00
parent b860ea7a2e
commit f9f3d23b7f
2 changed files with 7 additions and 2 deletions

View file

@ -17,7 +17,10 @@ services:
- assets - assets
assets: assets:
image: node:14-alpine build:
context: .
dockerfile: tools/docker/images/Dockerfile
target: assets
volumes: volumes:
- assets:/node/source/build - assets:/node/source/build
- /node/node_modules - /node/node_modules

View file

@ -20,7 +20,9 @@ RUN sculpin generate --env prod
# #
FROM node:14 AS assets FROM node:14-alpine AS assets
RUN apk add --no-cache make
WORKDIR /app WORKDIR /app