Skip to content

update ubuntu23.04 #92

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: release
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ubuntu/23.04-go1.20.7-tf-cpu/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM v8fg/ubuntu:23.04

LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg"

RUN wget https://golang.google.cn/dl/go1.20.7.linux-amd64.tar.gz && \
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.7.linux-amd64.tar.gz && rm go1.20.7.linux-amd64.tar.gz

ENV PATH=$PATH:/usr/local/go/bin GOPROXY=https://goproxy.cn,https://goproxy.io/,https://mirrors.aliyun.com/goproxy/,https://gocenter.io/,https://proxy.golang.org,direct

# Google libtensorflow
RUN wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && tar -C /usr/local -xzf libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && ldconfig && rm libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz
42 changes: 42 additions & 0 deletions ubuntu/23.04-go1.20.7-tf-cpu/configs/sources-23.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#清华源
# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse

#中科大
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse

#阿里源
# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted
deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar universe
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe
deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe
deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse
12 changes: 12 additions & 0 deletions ubuntu/23.04-go1.20.7-tf-cpu/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3.7'
services:
ubuntu:
build: .
container_name: ubuntu-23.04-go1.20.7-tf-cpu
environment:
TZ: Asia/Shanghai
image: v8fg/ubuntu:23.04-go1.20.7-tf-cpu
stdin_open: true
tty: true
restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped
command: [ "/bin/bash"]
13 changes: 13 additions & 0 deletions ubuntu/23.04-go1.20.7-tf-cpu/docker-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

# image info, version may auto update
TAG=23.04-go1.20.7-tf-cpu
USER=v8fg
NAME=ubuntu

REPOSITORY=${USER}/${NAME}
# image with tag, use to push image
LOCATION=${REPOSITORY}:${TAG}

# use to build container
CONTAINER_NAME=${USER}-${NAME}-${TAG}
8 changes: 8 additions & 0 deletions ubuntu/23.04-go1.20.7-upx/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM v8fg/ubuntu:23.04

LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg"

RUN wget https://golang.google.cn/dl/go1.20.7.linux-amd64.tar.gz && \
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.7.linux-amd64.tar.gz && rm go1.20.7.linux-amd64.tar.gz

ENV PATH=$PATH:/usr/local/go/bin GOPROXY=https://goproxy.cn,https://goproxy.io/,https://mirrors.aliyun.com/goproxy/,https://gocenter.io/,https://proxy.golang.org,direct
42 changes: 42 additions & 0 deletions ubuntu/23.04-go1.20.7-upx/configs/sources-23.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#清华源
# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse

#中科大
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse

#阿里源
# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted
deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar universe
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe
deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe
deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse
12 changes: 12 additions & 0 deletions ubuntu/23.04-go1.20.7-upx/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3.7'
services:
ubuntu:
build: .
container_name: ubuntu-23.04-go1.20.7-upx
environment:
TZ: Asia/Shanghai
image: v8fg/ubuntu:23.04-go1.20.7-upx
stdin_open: true
tty: true
restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped
command: [ "/bin/bash"]
13 changes: 13 additions & 0 deletions ubuntu/23.04-go1.20.7-upx/docker-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

# image info, version may auto update
TAG=23.04-go1.20.7-upx
USER=v8fg
NAME=ubuntu

REPOSITORY=${USER}/${NAME}
# image with tag, use to push image
LOCATION=${REPOSITORY}:${TAG}

# use to build container
CONTAINER_NAME=${USER}-${NAME}-${TAG}
11 changes: 11 additions & 0 deletions ubuntu/23.04-go1.21.0-tf-cpu/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM v8fg/ubuntu:23.04

LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg"

RUN wget https://golang.google.cn/dl/go1.21.0.linux-amd64.tar.gz && \
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz && rm go1.21.0.linux-amd64.tar.gz

ENV PATH=$PATH:/usr/local/go/bin GOPROXY=https://goproxy.cn,https://goproxy.io/,https://mirrors.aliyun.com/goproxy/,https://gocenter.io/,https://proxy.golang.org,direct

# Google libtensorflow
RUN wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && tar -C /usr/local -xzf libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && ldconfig && rm libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz
42 changes: 42 additions & 0 deletions ubuntu/23.04-go1.21.0-tf-cpu/configs/sources-23.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#清华源
# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse

#中科大
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse

#阿里源
# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted
deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar universe
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe
deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe
deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse
12 changes: 12 additions & 0 deletions ubuntu/23.04-go1.21.0-tf-cpu/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3.7'
services:
ubuntu:
build: .
container_name: ubuntu-23.04-go1.21.0-tf-cpu
environment:
TZ: Asia/Shanghai
image: v8fg/ubuntu:23.04-go1.21.0-tf-cpu
stdin_open: true
tty: true
restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped
command: [ "/bin/bash"]
13 changes: 13 additions & 0 deletions ubuntu/23.04-go1.21.0-tf-cpu/docker-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

# image info, version may auto update
TAG=23.04-go1.21.0-tf-cpu
USER=v8fg
NAME=ubuntu

REPOSITORY=${USER}/${NAME}
# image with tag, use to push image
LOCATION=${REPOSITORY}:${TAG}

# use to build container
CONTAINER_NAME=${USER}-${NAME}-${TAG}
8 changes: 8 additions & 0 deletions ubuntu/23.04-go1.21.0-upx/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM v8fg/ubuntu:23.04

LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg"

RUN wget https://golang.google.cn/dl/go1.21.0.linux-amd64.tar.gz && \
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz && rm go1.21.0.linux-amd64.tar.gz

ENV PATH=$PATH:/usr/local/go/bin GOPROXY=https://goproxy.cn,https://goproxy.io/,https://mirrors.aliyun.com/goproxy/,https://gocenter.io/,https://proxy.golang.org,direct
42 changes: 42 additions & 0 deletions ubuntu/23.04-go1.21.0-upx/configs/sources-23.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#清华源
# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security universe
deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security multiverse

#中科大
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse

#阿里源
# deb cdrom:[Ubuntu 23.04 LTS lunar Xerus_ - Release amd64 (20160420.1)]/ lunar main restricted
deb-src http://archive.ubuntu.com/ubuntu lunar main restricted #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar universe
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates universe
deb http://mirrors.aliyun.com/ubuntu/ lunar multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted multiverse universe #Added by software-properties
deb http://mirrors.aliyun.com/ubuntu/ lunar-security universe
deb http://mirrors.aliyun.com/ubuntu/ lunar-security multiverse
12 changes: 12 additions & 0 deletions ubuntu/23.04-go1.21.0-upx/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3.7'
services:
ubuntu:
build: .
container_name: ubuntu-23.04-go1.21.0-upx
environment:
TZ: Asia/Shanghai
image: v8fg/ubuntu:23.04-go1.21.0-upx
stdin_open: true
tty: true
restart: 'no' # no|on-failure[:max-retries]|always|unless-stopped
command: [ "/bin/bash"]
13 changes: 13 additions & 0 deletions ubuntu/23.04-go1.21.0-upx/docker-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

# image info, version may auto update
TAG=23.04-go1.21.0-upx
USER=v8fg
NAME=ubuntu

REPOSITORY=${USER}/${NAME}
# image with tag, use to push image
LOCATION=${REPOSITORY}:${TAG}

# use to build container
CONTAINER_NAME=${USER}-${NAME}-${TAG}
6 changes: 6 additions & 0 deletions ubuntu/23.04-tf-cpu/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM v8fg/ubuntu:23.04

LABEL author="xwi88" type="ubuntu" github="https://github.com/xwi88" group="https://github.com/v8fg"

# Google libtensorflow
RUN wget https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && tar -C /usr/local -xzf libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz && ldconfig && rm libtensorflow-cpu-linux-x86_64-2.3.0.tar.gz
Loading