Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile - github.com/nextcloud/passman-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd1f9e0a7e7ac48565baaf23273511c5ee7d250c (plain)
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
FROM node:lts-stretch-slim

# Install Ruby & Bourbon
# Only required once to init project
# RUN apk update && apk upgrade && apk --update add \
#     ruby ruby-dev ruby-ffi ruby-irb ruby-rake ruby-io-console ruby-bigdecimal ruby-json ruby-bundler \
#     libstdc++ tzdata bash ca-certificates \
#     && echo 'gem: --no-document' > /etc/gemrc
# RUN gem install bourbon

RUN apt-get update && \
    apt-get install -y chromium firefox-esr && \
    rm -rf /var/lib/apt/

# Install node packages
RUN npm install -g grunt-cli

# Environment vars
ENV DOCKER="True"

# Copy files
RUN mkdir -p /passman
WORKDIR /passman
COPY . /passman

# Install project dependencies
RUN npm install