@fishawack/lab-env 2.0.2 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -139,6 +139,12 @@ RUN rm -rf ./aws-elastic-beanstalk-cli-setup
|
|
|
139
139
|
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
|
|
140
140
|
locale-gen
|
|
141
141
|
|
|
142
|
+
# Install AWS-CLI@2
|
|
143
|
+
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
|
|
144
|
+
RUN unzip awscliv2.zip
|
|
145
|
+
RUN ./aws/install
|
|
146
|
+
RUN rm -rf ./aws && rm -rf awscliv2.zip
|
|
147
|
+
|
|
142
148
|
# Cleanup apt-get install folders
|
|
143
149
|
RUN apt-get clean && \
|
|
144
150
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
File without changes
|
package/core/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "lab-env docker config for the @fishawack/core npm module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"postversion": "mv ./*/ ./$npm_package_version && docker build ./*/ -t fishawack/core:$npm_package_version -t fishawack/core:latest && docker push fishawack/core:$npm_package_version && docker push fishawack/core:latest && git add . && git commit -m 'Bumped core to $npm_package_version'"
|