2adf8a738e
fixes #972
26 lines
552 B
Docker
26 lines
552 B
Docker
# Using Alpine to keep the images smaller
|
|
FROM alpine:latest
|
|
|
|
# Pushing all files into image
|
|
WORKDIR /app
|
|
ADD . /app
|
|
|
|
# Install updates and NodeJS+Dependencies
|
|
RUN apk update && apk upgrade
|
|
RUN apk add nodejs npm git python build-base clang
|
|
|
|
# Install yarn
|
|
RUN npm i yarn -g
|
|
|
|
# Install Pinafore
|
|
RUN yarn --pure-lockfile
|
|
RUN yarn build
|
|
|
|
# Expose port 4002
|
|
EXPOSE 4002
|
|
|
|
# Setting run-command, using explicit `node` command
|
|
# rather than `yarn` or `npm` to use less memory
|
|
# https://github.com/nolanlawson/pinafore/issues/971
|
|
CMD PORT=4002 node server.js
|