Skip to content

Commit

Permalink
Upgrade Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jopetty committed Dec 21, 2021
1 parent e722725 commit 5e650f4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
FROM arm64v8/ubuntu:focal

# Update base system
RUN apt-get update
RUN apt-get install -y wget bash-completion git && rm -rf /var/lib/apt/lists/*
RUN apt-get install -y wget git && rm -rf /var/lib/apt/lists/*

ENV CONDA_DIR="/usr/local/bin/miniconda3"
ENV PATH="$CONDA_DIR/bin:$PATH"
Expand Down
1 change: 0 additions & 1 deletion .devcontainer/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ services:
environment:
- COMPOSE_DOCKER_CLI_BUILD=1
- DOCKER_BUILDKIT=1
platform: linux/arm64/v8
image: transductions
entrypoint: /bin/bash
stdin_open: true
Expand Down
7 changes: 6 additions & 1 deletion .devcontainer/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: transd

channels:
- pytorch
- conda-forge

dependencies:
- python=3.8
Expand All @@ -15,5 +16,9 @@ dependencies:
- transformers=4.14.1
- ipympl=0.7.0
- pandas=1.3.4
- conda-lock=0.13.2
- pip:
- -r requirements.txt
- -r requirements.txt

platforms:
- linux-arm64

0 comments on commit 5e650f4

Please sign in to comment.