Skip to content

Commit e4e52be

Browse files
committed
WIP
1 parent ced576b commit e4e52be

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,14 @@ RUN groupadd --gid 1000 sentry \
3434
&& useradd --uid 1000 --gid sentry --shell /bin/bash --create-home sentry
3535

3636
WORKDIR /workspace/sentry
37+
3738
RUN chown -R sentry:sentry /workspace/sentry
38-
RUN mkdir /workspace/gems && chown -R sentry:sentry /workspace/gems
3939

4040
ARG VERSION
4141
ARG GEM_HOME="/workspace/gems/${VERSION}"
4242

43+
RUN mkdir /workspace/gems && chown -R sentry:sentry /workspace/gems
44+
4345
ENV LANG=C.UTF-8 \
4446
BUNDLE_JOBS=4 \
4547
BUNDLE_RETRY=3 \

.devcontainer/entrypoint-sentry-test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
set -e
44

5-
sudo chown -R sentry:sentry /workspace/sentry/log
5+
sudo chown -R sentry:sentry /workspace/sentry
66

77
echo "Setting up sentry-test environment..."
88
cd /workspace/sentry
99

1010
git config --global --add safe.directory /workspace/sentry
1111

12-
echo "Installing bundle dependencies in root folder..."
12+
echo "Installing bundle dependencies in /workspace/sentry..."
1313
bundle install
1414

1515
echo "✅ sentry-test setup completed!"

0 commit comments

Comments
 (0)