mirror of
https://github.com/thedrewen/protojx-manager.git
synced 2026-03-21 01:48:54 +01:00
fix(deploy): initialize and destroy DataSource for command deployment fix(index): handle autocomplete interactions in command execution refactor(types): add autocomplete support to CommandDefinition type fix(Dockerfile): ensure npm run register is executed during build
13 lines
167 B
Docker
13 lines
167 B
Docker
FROM node:22
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN apt-get update && apt-get install -y iputils-ping
|
|
RUN npm clean-install
|
|
|
|
RUN npm run register
|
|
|
|
CMD [ "npm", "run", "start" ]
|