feat: Split v1 and v2 apis

This commit is contained in:
Josepablo C
2024-08-05 15:33:23 -06:00
parent 49ee7d7b5a
commit c3f0b08cb7
149 changed files with 284 additions and 33 deletions

17
v2/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# Use an official Python runtime as a parent image
FROM node:18-alpine
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY server /app/server
COPY package.json /app
COPY dotenv /app/.env
RUN apk add bash bash-completion vim
RUN npm install --include=dev
EXPOSE 3000
ENTRYPOINT npm start