Skip to content

Commit

Permalink
Moving all Docker related files into their sub-folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjc committed May 3, 2016
1 parent c5e91cf commit b953c7b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 16 deletions.
6 changes: 0 additions & 6 deletions .theanorc

This file was deleted.

3 changes: 0 additions & 3 deletions docker-cpu.df → docker/cpu.df
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM ubuntu:14.04

# Install dependencies

RUN apt-get update && \
apt-get install --assume-yes \
"build-essential" \
Expand Down Expand Up @@ -42,9 +41,7 @@ COPY samples samples
COPY doodle.py .

# Get a pre-trained neural network (VGG19)

RUN wget "https://github.com/alexjc/neural-doodle/releases/download/v0.0/vgg19_conv.pkl.bz2"

# Set an entrypoint to the main doodle.py script

ENTRYPOINT ["python3", "doodle.py"]
7 changes: 0 additions & 7 deletions docker-gpu.df → docker/gpu.df
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM nvidia/cuda:7.5-cudnn4-devel

# Install dependencies

RUN apt-get update && \
apt-get install --assume-yes \
"module-init-tools" \
Expand Down Expand Up @@ -42,14 +41,8 @@ RUN python3 -m pip install -r "requirements.txt"
COPY samples samples
COPY doodle.py .

# Copy Theano's configuration

COPY .theanorc /root/

# Get a pre-trained neural network (VGG19)

RUN wget "https://github.com/alexjc/neural-doodle/releases/download/v0.0/vgg19_conv.pkl.bz2"

# Set an entrypoint to the main doodle.py script

ENTRYPOINT ["python3", "doodle.py", "--device=gpu"]

0 comments on commit b953c7b

Please sign in to comment.