Skip to content
This repository has been archived by the owner on Dec 16, 2019. It is now read-only.

Use the official docker images while building hygdrop #11

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.git
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Run hygdrop
#
# VERSION 0.2

FROM hylang:0.10.1

MAINTAINER Vasudev Kamath <[email protected]>

COPY requirements.txt /tmp/
RUN pip3 install -r /tmp/requirements.txt
ADD . /opt/hygdrop

WORKDIR /opt/hygdrop

CMD ["hy", "./hygdrop.hy"]
15 changes: 0 additions & 15 deletions contrib/Dockerfile

This file was deleted.

3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
hy>=0.10
irc
requests
-e git+https://github.com/hylang/hy.git#egg=hy
astor>=0.3
docopt