summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: f31d522eceeadc334ea9d626333e4c1ed603f5e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM ubuntu:trusty

WORKDIR /app

COPY install_dependencies.sh /app

COPY . /app/local

RUN apt-get update -qq

RUN chmod +x install_dependencies.sh

RUN chmod +x ./local/linuxdeploy-x86_64.AppImage

RUN ./local/linuxdeploy-x86_64.AppImage --appimage-extract

RUN mv squashfs-root ./local/squashfs-root

RUN ./install_dependencies.sh

# optionaly make the local build script executable 
RUN chmod +x /app/local/build.sh