2022-11-06 17:11:42 +00:00
|
|
|
# TODO: move this into the cerc-io/mobymask-watcher repo
|
2023-08-30 10:45:43 +00:00
|
|
|
FROM node:18.17.1-alpine3.18
|
2022-11-06 17:11:42 +00:00
|
|
|
|
2022-11-07 00:17:48 +00:00
|
|
|
RUN apk --update --no-cache add git python3 alpine-sdk
|
|
|
|
|
2022-11-06 17:11:42 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
2022-12-22 14:13:13 +00:00
|
|
|
COPY . .
|
2022-11-07 00:17:48 +00:00
|
|
|
|
2023-08-30 10:45:43 +00:00
|
|
|
RUN echo "Building mobymask-watcher-ts" && \
|
2022-12-22 14:13:13 +00:00
|
|
|
yarn && yarn build
|