-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Docker to setup development environment
- Loading branch information
1 parent
8019721
commit 59f0385
Showing
3 changed files
with
41 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Use a base image | ||
FROM rocm/dev-ubuntu-22.04 | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Update package list and install prerequisites | ||
RUN apt-get update && apt-get install -y \ | ||
software-properties-common cmake locales \ | ||
&& add-apt-repository ppa:deadsnakes/ppa \ | ||
&& apt-get update | ||
|
||
# Generate the desired locale | ||
RUN locale-gen en_US.UTF-8 | ||
|
||
# Install Python 3.10 and pip | ||
RUN apt-get install -y python3.10 python3.10-venv python3.10-dev python3-pip | ||
|
||
# Set Python 3.10 as the default python3 | ||
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 1 | ||
|
||
# Copy your application code to the container | ||
COPY . . | ||
|
||
# Install any dependencies specified in requirements.txt | ||
RUN pip3 install --no-cache-dir -r requirements.txt -r requirements-test.txt | ||
|
||
# Command to run your application | ||
CMD ["/bin/bash"] |
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,8 @@ | ||
services: | ||
app: | ||
build: . | ||
devices: | ||
- /dev/kfd | ||
- /dev/dri | ||
security_opt: | ||
- seccomp:unconfined |