code-katas/typescript/Dockerfile

13 lines
133 B
Text
Raw Permalink Normal View History

2022-09-24 00:49:23 +01:00
FROM node:16-alpine
CMD ["sh"]
ENV PATH=${PATH}:/app/node_modules/.bin
RUN apk add --no-cache entr just
WORKDIR /app
USER node