Skip to content

Commit 3fe8e7b

Browse files
Docker build adjustments for new entrypoint
1 parent c389ab6 commit 3fe8e7b

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ RUN chmod +x ./conf/startup.sh
2121
RUN yarn build
2222

2323
# Run the web service on container startup.
24-
CMD [ "./conf/startup.sh" ]
24+
CMD [ "conf/startup.sh" ]

conf/startup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
service memcached start
33
yarn start

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"jwks-rsa": "^1.12.0",
4040
"jwt-decode": "^3.1.2",
4141
"memcached-node": "^0.1.0",
42-
"node-fetch": "^2.6.1",
42+
"node-fetch": "^2.6.1"
4343
},
4444
"devDependencies": {
4545
"@types/jest": "^26.0.15",

0 commit comments

Comments
 (0)