origin fixed

This commit is contained in:
zwnk 2024-11-24 04:52:39 -03:00
commit 01bfbd5767
22 changed files with 1890 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM node:alpine
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY . .
RUN npm install
EXPOSE 8080
CMD ./start.sh