Skip to content

Commit

Permalink
chore(docker): fonts are managed with the rest of app related stuff (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelromcar-parabol committed Apr 30, 2024
1 parent eb6e608 commit fd30cfa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker/images/parabol-ubi/dockerfiles/basic.dockerfile
Expand Up @@ -10,16 +10,17 @@ ENV HOME=/home/node \
NPM_CONFIG_PREFIX=/home/node/.npm-global \
PORT=3000

# Create a directory to store fonts
RUN mkdir -p /usr/share/fonts
COPY --chown=node static/fonts /usr/share/fonts
COPY --chown=node --chmod=755 docker/images/parabol-ubi/entrypoints/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY --chown=node docker/images/parabol-ubi/tools/ip-to-server_id ${HOME}/tools/ip-to-server_id

# Required for pushToCDN to work with FILE_STORE_PROVIDER set to 'local'
RUN mkdir -p ${HOME}/parabol/self-hosted && \
chown node:node ${HOME}/parabol/self-hosted

# Create a directory to store fonts
RUN mkdir -p /usr/share/fonts
COPY --chown=node static/fonts /usr/share/fonts

COPY --chown=node .env.example ${HOME}/parabol/.env.example

# The application requires a yarn.lock file on the root folder to identify it
Expand Down

0 comments on commit fd30cfa

Please sign in to comment.