forked from webappio/livechat-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLayerfile
21 lines (15 loc) · 837 Bytes
/
Layerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM vm/ubuntu:18.04
# install docker-ce (from tutorial for ubuntu)
RUN apt-get update && \
apt-get install apt-transport-https ca-certificates curl software-properties-common && \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" && \
apt-get update && \
apt install docker-ce
# install docker compose
RUN curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \
chmod +x /usr/local/bin/docker-compose
# copy the root (i.e., repository root) to /root in the runner
COPY / /root
RUN REPEATABLE docker-compose up -d --build --force-recreate --remove-orphans && sleep 6
EXPOSE WEBSITE localhost:8000