renovate[bot]
9cb294feb4
chore(deps): update alpine docker tag to v3.18.3
2023-08-07 23:22:55 +00:00
renovate[bot]
885cecef90
Update alpine Docker tag to v3.18.2
2023-06-14 18:55:26 +00:00
nicolargo
f2869b28b7
Correct issue with the PR #2419 - Miss a chmod on the glances startup script
2023-05-20 16:36:40 +02:00
Robin Candau
2413601560
Fix the PATH ENV var
2023-05-20 11:25:40 +02:00
Robin Candau
2f1781f346
Add glances binary to '/usr/local/bin' + Update ENV PATH to include '/venv/bin' in Dockerfiles
2023-05-20 11:01:24 +02:00
Bharath Vignesh J K
31d6338b9d
chg: Dockerfile - fix shell-check complains
...
double-quote possible glob expansions
2023-05-14 01:01:56 +05:30
Bharath Vignesh J K
ab016bc15e
chg: Dockerfile (ubuntu) - exclude pip in venv
2023-05-14 00:54:43 +05:30
Bharath Vignesh J K
e90d33eca6
fix: Dockerfile - missing packaging
dependency
...
cause: venv fallbacks on system packages that only exist during build time
issue from: 4bf16e95
2023-05-14 00:54:42 +05:30
nicolargo
c56f07673e
First try to solve issue on Docker images. Docker plugin do not work as expected - Related to #2392
2023-05-13 16:57:43 +02:00
Bharath Vignesh J K
4bf16e9566
chg: Dockerfile (alpine) - use system site-packages with venv
2023-05-12 04:00:30 +05:30
Bharath Vignesh J K
adafb32a2f
chg: Dockerfile - structured & cleaner build process
2023-05-12 04:00:30 +05:30
Bharath Vignesh J K
ddd0c47a78
chg: Dockerfile (alpine) - upgrade img ver to 3.18.0
...
update python version to match newer release
2023-05-10 20:27:14 +05:30
Bharath Vignesh J K
8972880b77
chg: Dockerfile - fix alpine ARM build failures for cryptography
...
Issue: #2368
2023-05-07 22:01:55 +05:30
Bharath Vignesh J K
4843963bf5
chg: Dockerfile - attempt fix for alpine builds
2023-05-07 04:44:29 +05:30
nicolargo
f6141bf8f3
Try to solve issue on Alpine build (by upgrading pip)
2023-05-06 15:21:29 +02:00
nicolargo
d4de420b03
Try to solve issue on Alpine build
2023-05-06 14:40:40 +02:00
nicolargo
67a4084e2e
Solve Rust compiler not present in the CI
2023-05-06 14:22:44 +02:00
renovate[bot]
662252c6c8
chore(deps): update nvidia/cuda docker tag to v12.1.1
2023-04-27 20:10:05 +00:00
nicolargo
28b46a72a4
Avoid interaction in the Docker build process for Ubuntu images
2023-03-12 10:02:00 +01:00
renovate[bot]
635dc2e3bb
chore(deps): update nvidia/cuda docker tag to v12.1.0
2023-03-10 00:11:59 +00:00
nicolargo
6b637bcc57
All times displayed in UTC - Container not using TZ/localtime (Docker) #2278
2023-03-05 09:25:53 +01:00
nicolargo
476e9b5760
Smartmontools missing from full docker image #2262
2023-02-04 08:45:45 +01:00
renovate[bot]
dbbf6ba2fa
chore(deps): update nvidia/cuda docker tag to v12.0.1
2023-02-02 21:31:43 +00:00
Nicolas Hennion
c330e07e34
Merge pull request #2243 from nicolargo/renovate/nvidia-cuda-12.x
...
Update nvidia/cuda Docker tag to v12
2023-01-14 09:13:08 +01:00
nicolargo
f3f85eeb27
Unable to see docker related information #2180
2023-01-14 09:10:56 +01:00
renovate[bot]
9ca7e4121f
Update nvidia/cuda Docker tag to v12
2023-01-13 11:05:36 +00:00
fkwong
50f5bfc34b
Add ubuntu Dockerfile
2023-01-05 13:19:42 +08:00
renovate[bot]
7409818d5d
Update alpine Docker tag to v3.17
2022-11-16 23:31:12 +00:00
nicolargo
2e8fcbc086
Correct an issue on alpine.Dockerfile
2022-11-03 15:26:43 +01:00
nicolargo
eb8c0fd23c
Refactor Docker image factory: from now, only Alpine images will be provided
2022-11-03 15:05:57 +01:00
nicolargo
6116c2cc44
Update Debian container to Python 3.11
2022-10-29 10:55:59 +02:00
nicolargo
b6f56f416b
Quick and dirty patch for #2155
2022-10-17 23:15:56 +02:00
nicolargo
c5246197da
[REQUEST Docker image] Output log to stdout #2128 (for debian)
2022-09-24 18:57:19 +02:00
nicolargo
922610f837
[REQUEST Docker image] Output log to stdout #2128
2022-09-24 16:50:37 +02:00
nicolargo
e1a85a24f7
Refactor Docker file CI
2022-09-24 11:38:13 +02:00
nicolargo
2532008162
Correct issue on the dev Docker
2022-09-15 11:02:11 +02:00
nicolargo
d0fde6904c
Version 3.2.6.4
2022-05-26 10:27:21 +02:00
nicolargo
9cc10fd33d
Use glances.conf file inside docker-compose folder for Docker images
2022-05-24 11:57:06 +02:00
Zameer Manji
605207f154
Update debian image to include smartmontools
...
This adds the `smartmontools` package to the debian based Docker image.
This package provides the `smartctl` binary which the `pySMART.smartx` package
requires.
Without this change, in the Docker container, with `--device=/dev/sda:/dev/sda` passed to `docker run`
```
# python3
Python 3.9.6 (default, Aug 17 2021, 02:38:04)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from pySMART import DeviceList
>>> DeviceList()
<DeviceList contents:
>
```
With this change:
```
# python3
Python 3.9.6 (default, Aug 17 2021, 02:38:04)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> ifrom pySMART import DeviceList
KeyboardInterrupt
>>> from pySMART import DeviceList
>>> DeviceList()
<DeviceList contents:
<SCSI device on /dev/sda mod:None sn:AB202000000000001398>
>
```
2021-09-08 19:52:01 -04:00
Markus Pöschl
b347ce277c
Fix alpine path
2021-07-25 14:40:42 +02:00
nicolargo
0eb8973626
Debian Docker images broken with version 3.2.2 #1905
2021-07-25 10:09:03 +02:00
Markus Pöschl
5e4b21f816
Fix python lib path in alpine images
2021-07-14 22:46:33 +02:00
Clifford W. Hansen
410264c33b
Fixed python library path
2021-05-20 16:55:02 +02:00
Clifford W. Hansen
6be4d3ba63
Fixed docker copy issue
2021-05-20 16:54:36 +02:00
Markus Pöschl
44a917a2c6
Move to plain alpine image to build pip dependencies successfully
2021-05-15 15:44:43 +02:00
Markus Pöschl
3ab59b833a
Add alpine multi-staged build
2021-05-15 15:44:43 +02:00
Markus Pöschl
d00e680c4d
Install build-essentials instead of just the gcc on debain build images
2021-05-15 15:44:43 +02:00
Markus Pöschl
b2506777b5
Adjust dev images for caching and add workdir again
2021-05-15 15:44:43 +02:00
Markus Pöschl
4794c2b6ab
Install dependencies before installing from pypi for better layer caching
2021-05-15 15:44:43 +02:00
Markus Pöschl
da9c056964
Ensure correct version inside docker container
2021-05-15 14:39:26 +02:00