Compare commits

..

No commits in common. "837b8cfed401c270465e752df4b670cd922219d7" and "68d0bc3792929ca48e21ff7129b88ba8000d16c9" have entirely different histories.

4 changed files with 2 additions and 11 deletions

View file

@ -1 +0,0 @@
PORT=9001

1
.gitignore vendored
View file

@ -32,4 +32,3 @@ yarn-debug.log*
yarn-error.log*
.vscode
.env

View file

@ -1,8 +1,7 @@
FROM node:23-alpine AS build
FROM node:18-alpine as build
WORKDIR /usr/local/app
COPY ./ /usr/local/app/
RUN apk update && apk add git
RUN npm install --save-dev
RUN npm run build

View file

@ -1,6 +0,0 @@
services:
app:
build: .
env_file: .env
ports:
- "${PORT}:80"