Skip to content

Commit 9f0c8cd

Browse files
committed
Add docker build
1 parent 4790315 commit 9f0c8cd

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
FROM debian:stretch
32

4-
MAINTAINER jeffeb3
3+
MAINTAINER Guy Sheffer <guysoft at gmail dot com>
54

65
RUN set -x \
76
&& apt-get update && apt-get install -y \
@@ -16,6 +15,10 @@ RUN set -x \
1615
qemu \
1716
qemu-user-static \
1817
sudo \
18+
zip \
19+
lsof \
1920
&& rm -rf /var/lib/apt/lists/*
2021

22+
COPY . /CustomPiOS
23+
2124
CMD ["/bin/bash"]

src/docker-compose.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: '3.6'
2+
3+
services:
4+
custompios:
5+
build:
6+
context: .
7+
container_name: custompios
8+
tty: true
9+
restart: always
10+
privileged: true

0 commit comments

Comments
 (0)