Files
project-lyra/core/relay/Dockerfile
2025-11-16 03:17:32 -05:00

19 lines
295 B
Docker

# relay/Dockerfile
FROM node:18-alpine
# Create app directory
WORKDIR /app
# Copy package.json and install deps first (better caching)
COPY package.json ./
RUN npm install
# Copy the rest of the app
COPY . .
# Expose port
EXPOSE 7078
# Run the server
CMD ["npm", "start"]