-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README and Docker for application build
- Loading branch information
Viktor Petukhov
committed
Sep 12, 2024
1 parent
ee4f4d9
commit 26a6feb
Showing
2 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM ubuntu:20.04 | ||
|
||
RUN apt-get update && apt-get install -y build-essential | ||
RUN apt install -y curl | ||
RUN curl -fsSL https://install.julialang.org | sh -s -- -y | ||
|
||
ENV PATH="/root/.juliaup/bin:${PATH}" | ||
ENV JULIA_NUM_THREADS=30 | ||
|
||
# ### Ignore cache (https://stackoverflow.com/questions/35134713/disable-cache-for-specific-run-commands) | ||
# # ARG CACHEBUST=1 | ||
# RUN julia -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/kharchenkolab/Baysor.git#develop"));' | ||
# RUN julia -e 'using Pkg; Pkg.develop("Baysor");' | ||
|
||
# ENTRYPOINT ["/bin/bash"] | ||
# WORKDIR /root/.julia/dev/Baysor/ |