@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
@@ -1,5 +1,8 @@
1
1
  ## Changelog
2
2
 
3
+ ### 2.1.0 (2022-05-27)
4
+ * [Change] Bumped core `0.0.21` to `0.1.0`
5
+
3
6
  ### 2.0.2 (2022-04-26)
4
7
  * [Change] Bumped core `0.0.20` to `0.0.21`
5
8
  * [Bug] Lock eb-cli due to breaking change
@@ -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
@@ -0,0 +1,4 @@
1
+ ## Changelog
2
+
3
+ ### 0.1.0 (2022-05-27)
4
+ * [Feature] Added aws-cli@2 to core container
package/core/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core",
3
- "version": "0.0.21",
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'"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "2.0.2",
3
+ "version": "2.1.0",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {