Skip to content
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.

Commit

Permalink
Added dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rtrevinnoc committed Mar 6, 2021
1 parent af543e6 commit 7259297
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Dockerfile
peer_registry
docs
__pycache__
external_image_cache
future_urls
README.md
COPYING.txt
FUTURE_url_vecs.bin
future_analytics
glove.6B
future_images
FUTURE_images_vecs.bin
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM ubuntu
MAINTAINER Roberto Treviño <rtrevinnoc@wearebuildingthefuture.com>
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y pkg-config python3-icu libicu-dev wget unzip git python3 python3-pip python-is-python3
RUN ln -s /usr/bin/pip3 /usr/bin/pip
WORKDIR opt
RUN mkdir FUTURE
WORKDIR FUTURE
COPY . .
RUN ./bootstrap.sh

0 comments on commit 7259297

Please sign in to comment.