summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: e2482c0bccf3409388a3794d8e08a32db7985378 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Use an official Python runtime as a parent image
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