mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 01:20:24 +03:00
13 lines
261 B
Text
13 lines
261 B
Text
|
FROM node:10.4.1-alpine
|
||
|
MAINTAINER Alejandro Celaya <alejandro@alejandrocelaya.com>
|
||
|
|
||
|
# Install yarn
|
||
|
RUN apk add --no-cache --virtual yarn
|
||
|
|
||
|
# Make home dir writable by anyone
|
||
|
RUN chmod 777 /home
|
||
|
|
||
|
CMD cd /home/shlink/www && \
|
||
|
yarn install && \
|
||
|
yarn start
|