mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
31 lines
650 B
Docker
Executable File
31 lines
650 B
Docker
Executable File
FROM node:20-bookworm-slim
|
|
EXPOSE 5000
|
|
|
|
# Install dependencies
|
|
RUN apt update
|
|
RUN apt install -y --no-install-recommends build-essential
|
|
RUN apt install -y --no-install-recommends curl
|
|
RUN apt install -y --no-install-recommends git
|
|
RUN apt install -y --no-install-recommends ssh
|
|
RUN apt install -y --no-install-recommends ca-certificates
|
|
|
|
# Create workdir
|
|
WORKDIR /home/node/app
|
|
|
|
# Copy Files
|
|
COPY . .
|
|
|
|
# Fix permissions
|
|
RUN chmod -R 777 /home/node/app
|
|
RUN chown -R node:node /home/node/app
|
|
|
|
# Set user to node
|
|
USER node
|
|
|
|
# Install modules & rebuild for host
|
|
RUN npm install
|
|
|
|
# Start server
|
|
RUN export NODE_ENV=production
|
|
CMD ["npm", "run", "start"]
|