Skip to content

Commit 7f73676

Browse files
committed
first commit
0 parents  commit 7f73676

File tree

991 files changed

+372809
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

991 files changed

+372809
-0
lines changed

Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM debian:jessie
2+
MAINTAINER na-ga <[email protected]>
3+
4+
# so apt-get doesn't complain
5+
ENV DEBIAN_FRONTEND=noninteractive
6+
7+
RUN \
8+
apt-get update && \
9+
apt-get install -y ca-certificates && \
10+
rm -rf /var/lib/apt/lists/*
11+
12+
ADD server server
13+
ENTRYPOINT ["/server"]

0 commit comments

Comments
 (0)