Dont push .env and other '.' folders

This commit is contained in:
2023-10-11 19:19:01 -05:00
parent 0e64f654ec
commit 2a4a1e8e14
3 changed files with 5 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ WORKDIR /usr/src/app
COPY package*.json ./
# continuous integration for production
RUN npm ci --only=production
RUN npm ci --omit=dev
# Bundle app source
COPY . .