You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
817 B
25 lines
817 B
FROM node:dubnium-alpine as builder
|
|
RUN apk add -U build-base python
|
|
WORKDIR /usr/src/app
|
|
COPY . /usr/src/app
|
|
RUN yarn && \
|
|
yarn build && \
|
|
yarn install --production --ignore-scripts --prefer-offline
|
|
|
|
FROM node:dubnium-alpine
|
|
LABEL maintainer="butlerx@notthe.cloud"
|
|
WORKDIR /usr/src/app
|
|
ENV NODE_ENV=production
|
|
EXPOSE 3000
|
|
COPY --from=builder /usr/src/app/dist /usr/src/app/dist
|
|
COPY --from=builder /usr/src/app/node_modules /usr/src/app/node_modules
|
|
COPY package.json /usr/src/app
|
|
COPY index.js /usr/src/app
|
|
RUN apk add -U openssh-client sshpass && \
|
|
mkdir ~/.ssh && \
|
|
echo '#!/usr/bin/env sh' >> /entrypoint.sh && \
|
|
echo 'ssh-keyscan -H wetty-ssh >> ~/.ssh/known_hosts' >> /entrypoint.sh && \
|
|
echo 'node .' >> /entrypoint.sh && \
|
|
chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
|