You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An example Dockerfile for an older version of Keystone 5:
FROM node:10.9.0-alpine
LABEL name "my-ks-app"RUN mkdir /app
WORKDIR /app
COPY ./ /app
# We need some other deps before we install. Then we need to clean them up afer.# See https://github.com/nodejs/docker-node/issues/384#issuecomment-305208112# And https://github.com/npm/uid-number/issues/3#issuecomment-287413039RUN apk --no-cache add --virtual native-deps g++ gcc libgcc libstdc++ linux-headers make python && \
npm config set unsafe-perm true && \
npm install --quiet node-gyp -g && \
yarn && \
apk del native-deps
EXPOSE 60000
CMD ["yarn", "start"]
The text was updated successfully, but these errors were encountered:
WIP Notes:
An example
Dockerfile
for an older version of Keystone 5:The text was updated successfully, but these errors were encountered: