This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 279
/
Dockerfile
52 lines (43 loc) · 2.09 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
49
50
51
52
# Usage:
# $ docker build -t chriddyp/database-connector .
# $ PLOTLY_DOMAIN_API="api-local.plot.ly" PLOTLY_STREAMBED_SSL_ENABLED="true" docker run -p 9494:9494 -v ~/.plotly/connector:/home -e PLOTLY_CONNECTOR_PLOTLY_API_DOMAIN=$PLOTLY_DOMAIN_API -e PLOTLY_CONNECTOR_PLOTLY_API_SSL_ENABLED=$PLOTLY_STREAMBED_SSL_ENABLED -e PLOTLY_CONNECTOR_IS_RUNNING_INSIDE_ON_PREM="true" PLOTLY_CONNECTOR_STORAGE_PATH="/home" -d chriddyp/database-connector
#
# Depends on the following ENV variables:
# - PLOTLY_DOMAIN_API (e.g. api-local.plot.ly)
# - PLOTLY_STREAMBED_SSL_ENABLED (e.g. true)
#
# Note that the command line argument PLOTLY_CONNECTOR_IS_RUNNING_INSIDE_ON_PREM="true"
# should only be set if the connector is running on an on prem server.
# If it is running on a local machine but it is targeting a remote on prem server,
# then it should not be set.
#
# Adapted from https://nodejs.org/en/docs/guides/nodejs-docker-webapp/
FROM node:8
# I'd like to install the latest version of npm with something like this:
# RUN npm install --global [email protected]
# But unforunately that fails with
# It doesn't seem like there is a good solution in the community yet
# See: https://github.com/npm/npm/issues/9863
# The App saves folders to the `os.homedir()` directory.
ENV HOME=/home/
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Create a directory that the app can save files to and that the host can access
# To map to the files that are saved on your host, run with:
# $ docker run -v ~/.plotly/connector:/plotly-connector
# TODO - With that command ^^, it's redudant to call `VOLUME /plotly-connector` right?
# Save that directory as an ENV variable for the app to use when saving files
# By default, the app will save these files in the home directory
ENV PLOTLY_CONNECTOR_DATA_FOLDER="/plotly-connector"
# Log to stdout in addition to the file
ENV PLOTLY_CONNECTOR_LOG_TO_STDOUT="true"
# Install app dependencies
COPY package.json /usr/src/app
COPY yarn.lock /usr/src/app
RUN yarn install
COPY . /usr/src/app
RUN yarn run heroku-postbuild
ENV PLOTLY_CONNECTOR_PORT 9494
EXPOSE 9494
ENTRYPOINT yarn run start-headless