Skip to content

Commit

Permalink
Remove vestigial references to environment-lock.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Oct 10, 2023
1 parent 3ad4e18 commit 57b43ac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 41 deletions.
7 changes: 2 additions & 5 deletions Dockerfile.ingest
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,13 @@ WORKDIR /snow-today-webapp-server-ingest
# Activate the conda environment during build process
ARG MAMBA_DOCKERFILE_ACTIVATE=1

# NOTE: For some reason, micromamba doesn't like the filename
# "environment-lock.yml". It fails to parse it because it's missing some
# special lockfile key.
COPY environment-lock.yml ./environment.yml

# Install dependencies to conda environment
COPY conda-lock.yml .
RUN micromamba install -y \
# NOTE: -p is important to install to the "base" env
-p /opt/conda \
-f environment.yml
-f conda-lock.yml
RUN micromamba clean --all --yes

# Install source
Expand Down
2 changes: 0 additions & 2 deletions tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

from invoke import Collection

from . import env
from . import format
from . import test

ns = Collection()
ns.add_collection(env)
ns.add_collection(format)
ns.add_collection(test)
34 changes: 0 additions & 34 deletions tasks/env.py

This file was deleted.

0 comments on commit 57b43ac

Please sign in to comment.