mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
Merge pull request #16 from yunkuangao/main
fix: Create Dockerfile and docker-compose.yml
This commit is contained in:
commit
38069b5b8c
5
.dockerignore
Normal file
5
.dockerignore
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
node_modules
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
*.md
|
||||||
|
dist
|
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
FROM debian:11
|
||||||
|
COPY . /app
|
||||||
|
WORKDIR /app
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install -y wget curl make sudo unzip
|
||||||
|
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
|
||||||
|
RUN apt-get install -y nodejs
|
||||||
|
RUN npm i -g pnpm
|
||||||
|
RUN pnpm install
|
||||||
|
EXPOSE 9527
|
||||||
|
CMD [ "pnpm", "dev" ]
|
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
ray-template:
|
||||||
|
build: .
|
||||||
|
container_name: ray-template
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
ports:
|
||||||
|
- "9527:9527"
|
||||||
|
# if you want to persist
|
||||||
|
# volumes:
|
||||||
|
# - ./app:/app
|
Loading…
x
Reference in New Issue
Block a user