podman fixes

This commit is contained in:
adrian
2025-08-20 22:30:23 +02:00
parent e380672d29
commit dc9ac12276
3 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
./node_modules /node_modules

2
deploy.sh Normal file
View File

@ -0,0 +1,2 @@
podman stop webser
podman build -t webserver -f ./dockerfile . && podman run --name webserver -d -p 3030:3000 webserver

View File

@ -5,6 +5,7 @@ COPY ./index.html .
COPY ./main.js . COPY ./main.js .
COPY ./backend.js . COPY ./backend.js .
COPY ./package.json ./package-lock.json . COPY ./package.json ./package-lock.json .
COPY ./style.css .
RUN npm i RUN npm i