kicad_1.0 / Dockerfile
steste80's picture
Update Dockerfile
70c0b09 verified
raw
history blame contribute delete
203 Bytes
FROM node:20
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm install -g typescript
# Compila TypeScript all'avvio del container
CMD ["tsc", "src/main.ts"] && node src/main.js