Skip to content

Commit 8dbc2df

Browse files
fix ARG order in the dockerFile
1 parent 7cda01c commit 8dbc2df

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# docker build --target standalone -t acode-dev .devcontainer/
66
# docker run -it -v $(pwd):/workspaces/acode acode-dev
77

8-
FROM mcr.microsoft.com/devcontainers/java:1-21-bullseye AS base
9-
108
ARG ANDROID_PLATFORM=36
119
ARG ANDROID_BUILD_TOOLS=36.0.0
1210
ARG CMDLINE_TOOLS_VERSION=11076708
1311
ARG NODE_VERSION=22
1412
ARG GRADLE_VERSION=8.11
1513

14+
FROM mcr.microsoft.com/devcontainers/java:1-21-bullseye AS base
15+
1616
ENV GRADLE_HOME=/opt/gradle
1717

1818
# removes broken yarn repo present in base image
@@ -73,4 +73,4 @@ RUN curl -fsSL https://fnm.vercel.app/install | bash -s -- --install-dir "${FNM_
7373
&& fnm default ${NODE_VERSION} \
7474
&& npm install -g pnpm
7575

76-
ENV PATH="${FNM_DIR}/aliases/default/bin:${PATH}"
76+
ENV PATH="${FNM_DIR}/aliases/default/bin:${PATH}"

0 commit comments

Comments
 (0)