Skip to content

Commit 5a784c2

Browse files
author
Daniel Tobon
committed
fixed base image url
1 parent d358a74 commit 5a784c2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docker/Dockerfile_dev

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Stage: base image
33
# ============================
44
ARG USERNAME=pcluser
5-
FROM pcl-docker:1.12.1-alpine3.15 AS base
5+
FROM danieltobon43/pcl-docker:1.12.1-alpine3.15 AS base
66
ARG USERNAME
77
RUN apk add --no-cache zsh wget git sudo
88
ENV DEBIAN_FRONTEND=noninteractive
@@ -61,14 +61,14 @@ RUN wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -
6161
echo "unset zle_bracketed_paste" >> /home/$USERNAME/.zshrc && unset DEBIAN_FRONTEND
6262
WORKDIR /home/$USERNAME
6363
EXPOSE 2225
64-
CMD [ "zsh" ]
64+
6565

6666
# ============================
6767
# Stage: development tools
6868
# ============================
6969
FROM base AS dev
7070
USER root
71-
RUN apk add --no-cache cmake build-base g++ gcc vim nano clang
71+
RUN apk add --no-cache cmake build-base g++ gcc vim nano clang lcov --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
7272
ARG USERNAME
7373
USER $USERNAME
7474

@@ -88,4 +88,5 @@ FROM dev AS dev-debug
8888
USER root
8989
RUN apk add --no-cache gdb rsync openssh-server
9090
ARG USERNAME
91-
USER $USERNAME
91+
USER $USERNAME
92+
CMD [ "zsh" ]

0 commit comments

Comments
 (0)