Skip to content

Commit 9bd4208

Browse files
authored
Merge pull request #212 from aodn/anmnWave
Feat: finalise mooring wave dataset
2 parents 3980f26 + b91ed4a commit 9bd4208

File tree

9 files changed

+3153
-450
lines changed

9 files changed

+3153
-450
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.12-slim
22

33
# Set environment variables for Poetry
4-
ENV POETRY_VERSION=1.8.4
4+
ENV POETRY_VERSION=2.2.1
55
ENV POETRY_HOME=/opt/poetry
66
ENV POETRY_NO_INTERACTION=1
77
ENV POETRY_VIRTUALENVS_IN_PROJECT=1
@@ -13,8 +13,8 @@ ENV PATH="${VIRTUAL_ENV}/bin:$PATH"
1313

1414
# Install Poetry and dependencies
1515
RUN apt-get update && apt-get install -y curl && \
16-
curl -sSL https://install.python-poetry.org | python3 - && \
17-
ln -s ${POETRY_HOME}/bin/poetry /usr/local/bin/poetry
16+
curl -sSL https://install.python-poetry.org | python3 - && \
17+
ln -s ${POETRY_HOME}/bin/poetry /usr/local/bin/poetry
1818

1919
# Set the working directory
2020
WORKDIR /app
@@ -28,11 +28,11 @@ RUN poetry install --with dev --no-interaction # --no-root
2828

2929
# Enable bash-completion and set bash as the default shell
3030
RUN echo "alias ll='ls -la'" >> ~/.bashrc && \
31-
echo "alias poetry='poetry run'" >> ~/.bashrc
31+
echo "alias poetry='poetry run'" >> ~/.bashrc
3232
## Run tests and verify the package build
3333
#RUN poetry run pytest && \
34-
#poetry build && \
35-
#pip install dist/*.whl
34+
#poetry build && \
35+
#pip install dist/*.whl
3636

3737
# Configure the shell to automatically activate the venv
3838
RUN echo "source ${VIRTUAL_ENV}/bin/activate" >> ~/.bashrc
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
generic_launcher.py

0 commit comments

Comments
 (0)