Skip to content

Commit f804b60

Browse files
committed
fix docker
1 parent 5094ab2 commit f804b60

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.dockerignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
coverage
3+
tmp
4+
disti
5+
heroku.yml
6+
docker-compose.yml
7+

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
FROM node:lts-alpine
22

3-
COPY ./package.json ./package.json
4-
COPY ./package-lock.json ./package-lock.json
5-
COPY ./src/index.js ./index.js
6-
# COPY ./src/parse-dashboard-config.json ./parse-dashboard-config.json # Uncomment to use your own config file
3+
RUN mkdir parse-hipaa-dashboard
4+
WORKDIR ./parse-hipaa-dashboard/
5+
COPY . .
76

7+
8+
# Install remaining dev dependencies
89
RUN npm install
910

1011
ENTRYPOINT []

0 commit comments

Comments
 (0)