FizzBuzz with TypeScript

This commit is contained in:
Oliver Davies 2022-09-24 00:49:23 +01:00
commit 4e2e0d6f0c
7 changed files with 2236 additions and 0 deletions

12
typescript/Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM node:16-alpine
CMD ["sh"]
ENV PATH=${PATH}:/app/node_modules/.bin
RUN apk add --no-cache entr just
WORKDIR /app
USER node