forked from cerc-io/stack-orchestrator
14 lines
177 B
Docker
14 lines
177 B
Docker
|
FROM node:16.17.1-alpine3.16
|
||
|
|
||
|
RUN apk --update --no-cache add python3 alpine-sdk
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN yarn
|
||
|
|
||
|
# Add scripts
|
||
|
RUN mkdir /scripts
|
||
|
ENV PATH="${PATH}:/scripts"
|