forked from github/safe-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
48 lines (38 loc) · 1.52 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
FROM node:14.17.6-alpine
ENV NODE_ENV production
## Set the Labels
LABEL version="1.0" \
description="Probot app which is a modified version of Settings Probot GitHub App" \
maintainer="GitHub Professional Services <[email protected]>"
USER node
## Set our working directory
WORKDIR /opt/safe-settings
## These files are copied separately to allow updates
## to the image to be as small as possible
COPY package.json /opt/safe-settings/
COPY index.js /opt/safe-settings/
COPY lib /opt/safe-settings/lib
## You should edit .env.example and save it before building this image
## Future updates to this Dockerfile _may_ move this over to
## pure environment variables in Docker, so it can be passed at the CLI.
## This will be purely based on demand
##COPY .env /opt/safe-settings/
## This can probably be removed, but users will have to make sure they
## run the container, then copy the key. This helps avoid that for folks
## using this in their enterprise environments
#COPY --chown=node:node .ssh/safe-settings.pem /opt/safe-settings/.ssh/
# We need Python for Probot
USER root
RUN apk add --no-cache make python
## Best practice, don't run as `root`
USER node
#
## Not strictly necessary, but set permissions to 400
#RUN chmod 400 /opt/safe-settings/.ssh/safe-settings.pem /opt/safe-settings/.env
## Install the app and dependencies
RUN npm install
## This app will listen on port 3000
EXPOSE 3000
## This does not start properly when using the ['npm','start'] format
## so stick with just calling it outright
CMD npm start