fastify initial commit

This commit is contained in:
2023-01-02 18:12:02 -03:00
commit a897ec5f95
10 changed files with 131 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM ubuntu:latest
RUN apt upgrade && apt update
RUN apt install -y curl
RUN curl -fsSL https://deb.nodesource.com/setup_19.x | bash - &&\
apt-get install -y nodejs
RUN npm install --global yarn
COPY [".", "/usr/src"]
WORKDIR "/usr/src"
RUN yarn
CMD ["yarn", "dev"]