Skip to content

Instantly share code, notes, and snippets.

View twiddler's full-sized avatar
🥳

twiddler

🥳
View GitHub Profile
@twiddler
twiddler / Dockerfile
Created December 7, 2022 20:41
Dockerized node app cannot access its own node_modules if node_modules is missing on host
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm i