Skip to content
Snippets Groups Projects
Dockerfile 283 B
Newer Older
# needed to compile translations
RUN curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && chmod +x /usr/local/bin/jq

WORKDIR /app/
ADD package.json yarn.lock ./
RUN yarn install
COPY . .