mirror of
https://github.com/JustAnimeCore/HiAnime-Api.git
synced 2026-04-17 13:51:44 +00:00
18 lines
227 B
Docker
18 lines
227 B
Docker
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"]
|