File tree 5 files changed +16
-4
lines changed
5 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.7-slim@sha256:85ddc7b500c5e33a6eec44adbde8347a8a07714f03fc638f2cf4b13837bac601
1
+ FROM python:3.9-slim@sha256:5f0192a4f58a6ce99f732fe05e3b3d00f12ae62e183886bca3ebe3d202686c7f
2
+
3
+ ENV PATH /usr/local/bin:$PATH
4
+ ENV PYTHON_VERSION 3.9.17
2
5
3
6
RUN \
4
7
adduser --system --disabled-password --shell /bin/bash vscode && \
22
25
pip install --no-cache-dir --upgrade black pip && \
23
26
echo '. /etc/bash_completion' >> /home/vscode/.bashrc && \
24
27
echo 'export PS1="\[\e [32;1m\]\u\[\e [m\] @\[\e [34;1m\]\H\[\e [m\] :\[\e [33;1m\]\w\[\e [m\] $ "' >> /home/vscode/.bashrc && \
25
- # dircolors -b >> /home/vscode/.bashrc && \ # somehow fix colors
26
28
apt-get clean
27
29
COPY ./requirements.txt /tmp/
28
30
RUN \
Original file line number Diff line number Diff line change 20
20
3306
21
21
],
22
22
"customizations" : {
23
+ "settings" : {
24
+ "python.pythonPath" : " /usr/local/bin/python"
25
+ },
23
26
"vscode" : {
24
27
"extensions" : [
25
28
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ docker/standard_worker/.env
118
118
119
119
# vscode
120
120
.vscode /settings.json
121
+ * .code-workspace
121
122
122
123
# ssh
123
124
* .ssh
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.1.2 - 2023-07-13
4
+
5
+ + Update - Pin versions for VS Code extensions
6
+ + Update - Dev Container base Docker image - python:3.7-slim -> python:3.9-slim
7
+ + Add - Environment variables to select local Python install over Linux distribution of Python
8
+
3
9
## 0.1.1 - 2023-06-19
4
10
5
- + Add - Docker image hash
11
+ + Add - Docker image ID
6
12
7
13
## 0.1.0 - 2023-02-27
8
14
Original file line number Diff line number Diff line change 12
12
13
13
setup (
14
14
name = "datajoint-tutorials" ,
15
- version = "0.1.1 " ,
15
+ version = "0.1.2 " ,
16
16
description = "DataJoint interactive tutorials" ,
17
17
long_description = long_description ,
18
18
author = "DataJoint" ,
You can’t perform that action at this time.
0 commit comments