mirror of
https://github.com/lemeow125/Notes.git
synced 2025-06-29 00:25:45 +08:00
Compare commits
No commits in common. "837b8cfed401c270465e752df4b670cd922219d7" and "68d0bc3792929ca48e21ff7129b88ba8000d16c9" have entirely different histories.
837b8cfed4
...
68d0bc3792
4 changed files with 2 additions and 11 deletions
|
@ -1 +0,0 @@
|
||||||
PORT=9001
|
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -31,5 +31,4 @@ npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
.vscode
|
.vscode
|
||||||
.env
|
|
|
@ -1,8 +1,7 @@
|
||||||
FROM node:23-alpine AS build
|
FROM node:18-alpine as build
|
||||||
|
|
||||||
WORKDIR /usr/local/app
|
WORKDIR /usr/local/app
|
||||||
COPY ./ /usr/local/app/
|
COPY ./ /usr/local/app/
|
||||||
RUN apk update && apk add git
|
|
||||||
RUN npm install --save-dev
|
RUN npm install --save-dev
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
services:
|
|
||||||
app:
|
|
||||||
build: .
|
|
||||||
env_file: .env
|
|
||||||
ports:
|
|
||||||
- "${PORT}:80"
|
|
Loading…
Add table
Add a link
Reference in a new issue