mirror of
https://github.com/JustAnimeCore/HiAnime-Api.git
synced 2026-04-17 22:01:44 +00:00
feature, not a bug
This commit is contained in:
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install system dependencies
|
||||
RUN apk add --no-cache git netcat-openbsd
|
||||
|
||||
# Copy package files
|
||||
COPY package.json ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
# Copy the rest
|
||||
COPY . .
|
||||
|
||||
# Start app
|
||||
CMD ["npm", "start"]
|
||||
Reference in New Issue
Block a user