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

Commit

Permalink
Merge branch 'master' of github.com:tagua-vm/parser
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Jun 7, 2017
2 parents 9909e84 + 4e2f1c9 commit c2a53a8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM debian:jessie

ENV ARCH=x86_64-unknown-linux-gnu
ENV RUST_RELEASE=1.11.0
ENV RUST_RELEASE=1.17.0
ENV CARGO_RELEASE=nightly
ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt

RUN apt-get update && \
apt-get install -y curl vim gcc libssl-dev libedit-dev libstdc++-4.9-dev && \
Expand Down
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: "2"

services:
cli:
build: .
volumes:
- ./:/source/:rw
command: tail -f /dev/null

test:
build: .
volumes:
- ./:/source/:rw
command: bash -c 'cargo build; cargo test'

0 comments on commit c2a53a8

Please sign in to comment.