feat(pinafore): import Containerfile

This commit is contained in:
chris 2022-11-10 11:42:56 +01:00
parent 32eedd6665
commit cbfea0ac5a
Signed by: chris
GPG Key ID: 75EFC7666CF51AD6
1 changed files with 15 additions and 0 deletions

15
pinafore/Containerfile Normal file
View File

@ -0,0 +1,15 @@
FROM reg.zknt.org/zknt/node
ENV VERSION v2.2.1
RUN set -xe;\
curl -LO https://github.com/nolanlawson/pinafore/archive/${VERSION}.tar.gz &&\
mkdir /app &&\
tar --strip-components=1 -C /app -xvzf ${VERSION}.tar.gz &&\
cd /app &&\
yarn --production --pure-lockfile &&\
yarn build
EXPOSE 8080
WORKDIR /app
ENTRYPOINT PORT=8080 node server.js